home *** CD-ROM | disk | FTP | other *** search
/ Eagles Nest BBS 1 / Eagles_Nest_Mac_Collection_Disc_1.TOAST / System & Related / UNIXNut#2 / Basics / card_38339.txt < prev    next >
Text File  |  1989-06-19  |  978b  |  44 lines

  1. -- card: 38339 from stack: in
  2. -- bmap block id: 62404
  3. -- flags: 0000
  4. -- background id: 34247
  5. -- name: Rename a File
  6.  
  7.  
  8. -- part contents for background part 7
  9. ----- text -----
  10. Rename a File
  11.  
  12. -- part contents for background part 21
  13. ----- text -----
  14. Move, Filename
  15.  
  16. -- part contents for background part 8
  17. ----- text -----
  18. Use the mv* (move) command to rename a file.  The mv command has exactly the same syntax as the cp* command.  Specify the name of the file you want to rename followed by the new filename.  It is always a good practice to make sure that the new name is unique; an existing file may be overwritten by the mv operation. 
  19.  
  20.  
  21.  
  22.  
  23.  
  24.  
  25. The file chap1 is "moved" to a new file called intro.  Then the file chap2 is renamed as chap1.  
  26.  
  27.  
  28. -- part contents for background part 28
  29. ----- text -----
  30. $ mv chap1 intro
  31. $ mv chap2 chap1
  32. $ ls
  33. chap1
  34. intro
  35.  
  36.  
  37.  
  38. -- part contents for background part 9
  39. ----- text -----
  40. 20 of 46
  41.  
  42. -- part contents for background part 29
  43. ----- text -----
  44. mv